HTMLify
index.html
Views: 421 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>DragonUncaged - Color Blast!</title> <meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"> <link rel="stylesheet" href="./style.css"> </head> <body> <!-- partial:index.partial.html --> <div class="container"> <div class="game-wrap"> <canvas width="960px" height="540" id="game"></canvas> <article class="content"> <h1 class="title"><span>A</span><span>t</span><span>a</span><span>r</span><span>i</span><span> </span><span>G</span><span>a</span><span>m</span><span>e</span><span>s</span></h1> <p>Use the <code>Left</code> and <code>Right</code> Arrows or <code>A</code> and <code>D</code> keys to move, <code>Spacebar</code> to shoot.</p> <p><a href="https://codepen.io/natewiley/full/EGyiF" target="_blank">Click here to play in full mode</a>, click the game to pause and take a break. <a href="https://github.com/DragonUncaged" target="_blank">Created By DragonUncaged</a></p> </article> </div> </div> <!-- partial --> <script src="./script.js"></script> </body> </html> |